Generate all permutations of a listΒΆ
itertools.permutations()
Generate all permutations of a list.
import itertools
print(list(itertools.permutations([1,2,3])))
Output:
[(1, 2, 3), (1, 3, 2), (2, 1, 3), (2, 3, 1), (3, 1, 2), (3, 2, 1)]
itertools.permutations()
import itertools
print(list(itertools.permutations([1,2,3])))
Output:
[(1, 2, 3), (1, 3, 2), (2, 1, 3), (2, 3, 1), (3, 1, 2), (3, 2, 1)]